]> git.r.bdr.sh - rbdr/super-polarity/blobdiff - Super Polarity/Program.cs
Merge branch 'master' of github.com:benbeltran/super-polarity
[rbdr/super-polarity] / Super Polarity / Program.cs
diff --git a/Super Polarity/Program.cs b/Super Polarity/Program.cs
new file mode 100644 (file)
index 0000000..6c3f614
--- /dev/null
@@ -0,0 +1,26 @@
+#region Using Statements
+using System;
+using System.Collections.Generic;
+using System.Linq;
+#endregion
+
+namespace SuperPolarity
+{
+#if WINDOWS || LINUX
+    /// <summary>
+    /// The main class.
+    /// </summary>
+    public static class Program
+    {
+        /// <summary>
+        /// The main entry point for the application.
+        /// </summary>
+        [STAThread]
+        static void Main()
+        {
+            using (var superPolarity = new SuperPolarity())
+                superPolarity.Run();
+        }
+    }
+#endif
+}